home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 23 / alarm320.zip / VOTE.BAT < prev    next >
DOS Batch File  |  1986-10-28  |  2KB  |  47 lines

  1. REM  
  2. REM   This batch file utilizes the ALARM utility in conjunction with the 
  3. REM   TIME_CHK, DATE_CHK and WEEKDAY programs to remind you to vote on 
  4. REM   election day (The first Tuesday after the first Monday in November).  
  5. REM   It will also recognize if it is too late to vote (polls close at 
  6. REM   8:00 PM).  
  7. REM  
  8. ECHO Off
  9. REM   If its not Tuesday, its not election day
  10. WEEKDAY Tuesday
  11. IF ERRORLEVEL 1 GOTO ALL_DONE
  12. REM   If its the 2nd of November, it IS election day
  13. DATE_CHK 11/02/00
  14. IF NOT ERRORLEVEL 1 GOTO VOTE
  15. REM   If its the 3rd of November, it IS election day
  16. DATE_CHK 11/03/00
  17. IF NOT ERRORLEVEL 1 GOTO VOTE
  18. REM   If its the 4th of November, it IS election day
  19. DATE_CHK 11/04/00
  20. IF NOT ERRORLEVEL 1 GOTO VOTE
  21. REM   If its the 5th of November, it IS election day
  22. DATE_CHK 11/05/00
  23. IF NOT ERRORLEVEL 1 GOTO VOTE
  24. REM   If its the 6th of November, it IS election day
  25. DATE_CHK 11/06/00
  26. IF NOT ERRORLEVEL 1 GOTO VOTE
  27. REM   If its the 7th of November, it IS election day
  28. DATE_CHK 11/07/00
  29. IF NOT ERRORLEVEL 1 GOTO VOTE
  30. REM   If its not the 8th of November, its not election day
  31. DATE_CHK 11/08/00
  32. IF ERRORLEVEL 1 GOTO ALL_DONE
  33. :VOTE
  34. REM   It is election day
  35. ECHO Today is Election Day!!
  36. REM   If its after 8:00 PM, the polls have closed
  37. TIME_CHK 20:00
  38. IF ERRORLEVEL 1 GOTO CLOSED
  39. REM   Set alarm to remind you to vote at 7:30 PM (19:30 Military Time)
  40. ALARM 5=19:30/"Time to Vote!"
  41. GOTO ALL_DONE
  42. :CLOSED
  43. REM   The polls have closed
  44. ECHO   but The Polls have Closed
  45. :ALL_DONE
  46.  
  47.